home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr54 / bison118.zip / SYSTEM.H < prev    next >
C/C++ Source or Header  |  1993-06-01  |  238b  |  15 lines

  1. #ifdef MSDOS
  2. #include <stdlib.h>
  3. #include <io.h>
  4. #endif /* MSDOS */
  5.  
  6. #ifdef USG
  7. #include <string.h>
  8. #else /* not USG */
  9. #ifdef MSDOS
  10. #include <string.h>
  11. #else
  12. #include <strings.h>
  13. #endif /* not MSDOS */
  14. #endif /* not USG */
  15.